home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 November / Chip Kasım 2001.iso / prog / cdcode / vmware / setup.exe / data1.cab / DriversPNP2000 / netvmnet.inf next >
Encoding:
Windows Setup INFormation  |  2001-09-19  |  3.5 KB  |  113 lines

  1. ;-------------------------------------------------------------------------
  2. ; netvmnet.inf -- VMnet Bridge Protocol Driver
  3. ;
  4. ; Copyright (c) 1993-1999, Microsoft Corporation
  5. ; Copyright (c) 2000-2001, VMware, Inc.
  6. ;-------------------------------------------------------------------------
  7. [version]
  8. Signature   = "$Windows NT$"
  9. Class       = NetService
  10. ClassGUID   = {4D36E974-E325-11CE-BFC1-08002BE10318}
  11. Provider    = %VMware%
  12.  
  13. [Manufacturer]
  14. %VMware%=BRIDGE
  15.  
  16. [BRIDGE]
  17. %VMware_Desc%=Install, vm_bridge
  18.  
  19. ;-------------------------------------------------------------------------
  20. ; Installation Section
  21. ;-------------------------------------------------------------------------
  22. [Install]
  23. AddReg=Inst_Ndi
  24. Characteristics = 0x80 ; NCF_HAS_UI  !!--Filter Specific--!!
  25. CopyFiles       = VMnet.CopyFiles.Init, VMnet.CopyFiles.Sys
  26.  
  27. ; ------------------------------------------------------------------------
  28. ; File copy
  29. ; ------------------------------------------------------------------------
  30. [SourceDisksNames]
  31. 1=%DiskDescription%,"",,
  32.  
  33. [SourceDisksFiles]
  34. wmbridge.dll=1
  35. vmnet.sys=1
  36.  
  37. [DestinationDirs]
  38. DefaultDestDir = 12
  39. VMnet.CopyFiles.Init  = 11   ; %windir%\System32
  40. VMnet.CopyFiles.Sys   = 12   ; %windir%\System32\drivers
  41.  
  42. ; Copying of wmbridge.dll
  43. [VMnet.CopyFiles.Init]
  44. wmbridge.dll,,,2
  45.  
  46. [VMnet.CopyFiles.Sys]
  47. vmnet.sys,,,2
  48.  
  49. ;-------------------------------------------------------------------------
  50. ; Ndi installation support
  51. ;-------------------------------------------------------------------------
  52. [Inst_Ndi]
  53. HKR,Ndi,Service,,VMnet
  54. HKR,Ndi,HelpText,,%VMware_HelpText%
  55. HKR, Ndi\Interfaces, UpperRange,, noupper
  56. HKR,"Ndi\Interfaces","LowerRange",,"ndis5,ndis4"
  57.  
  58. ; ----------------------------------------------------------------------
  59. ; Keys required if a Notify object is present
  60. ;
  61. HKR, Ndi, ClsID,        , {3d09c1ca-2bcc-40b7-b9bb-3f3ec143a87b}
  62. HKR, Ndi, ComponentDll, , wmbridge.dll
  63.  
  64.  
  65. ;-------------------------------------------------------------------------
  66. ; Service installation support
  67. ;-------------------------------------------------------------------------
  68. [Install.Services]
  69. AddService=VMnet,2,VMnet_Service_Inst, VMnet_EventLog_Inst
  70.  
  71. [VMnet_Service_Inst]
  72. DisplayName     = %VMware_Desc%
  73. ServiceType     = 1 ;SERVICE_KERNEL_DRIVER
  74. StartType       = 1 ;SERVICE_AUTO_START
  75. ErrorControl    = 1 ;SERVICE_ERROR_NORMAL
  76. ServiceBinary   = %12%\vmnet.sys
  77. LoadOrderGroup  = "PNP_TDI"
  78. AddReg          = AddReg_VMnet_Service_Inst
  79. Description     = %VMware_Desc%
  80.  
  81. [AddReg_VMnet_Service_Inst]
  82. HKLM,"System\CurrentControlSet\Services\VMnet","TextModeFlags",%REG_DWORD%,0x0001
  83. ; Don't delete -- edward
  84. HKR,"Parameters\Adapters","Test",%REG_DWORD%,0
  85.  
  86. [VMnet_EventLog_Inst]
  87. AddReg = VMnet_EventLog_AddReg
  88.  
  89. [VMnet_EventLog_AddReg]
  90. HKR,,EventMessageFile,0x00020000,"%%SystemRoot%%\System32\IoLogMsg.dll;%%SystemRoot%%\System32\drivers\vmnet.sys"
  91. HKR,,TypesSupported,0x00010001,7
  92.  
  93.  
  94. ;-------------------------------------------------------------------------
  95. ; Support for removal of static registry settings
  96. ;-------------------------------------------------------------------------
  97. [Install.Remove]
  98. DelReg=Del_Static_Reg
  99.  
  100. [Install.Remove.Services]
  101. DelService=VMnet
  102.  
  103. [Del_Static_Reg]
  104. HKLM,"System\CurrentControlSet\Services\VMnet","TextModeFlags"
  105.  
  106.  
  107. [Strings]
  108. VMware = "VMware, Inc."
  109. VMware_Desc = "VMware Bridge Protocol"
  110. VMware_HelpText = "Gives virtual machines access to physical networks."
  111. DiskDescription = "VMware install disk"
  112. REG_DWORD = 0x10001
  113.